From c888492d3722f75508c86c2df177149ee6e22448 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Sat, 14 May 2016 17:16:42 -0400 Subject: [PATCH] Reword note about git init default to be in the positive --- src/doc/guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 51c8fbca4..00cd86deb 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -24,8 +24,8 @@ $ cargo new hello_world --bin ``` We’re passing `--bin` because we’re making a binary program: if we -were making a library, we’d leave it off. If you’d like to not initialize a new -git repository as well (the default), you can also pass `--vcs none`. +were making a library, we’d leave it off. This also initializes a new `git` +repository by default. If you don't want it to do that, pass `--vcs none`. Let’s check out what Cargo has generated for us: -- 2.30.2